home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / program / greed.zip / INSTALL.DAT < prev    next >
Text File  |  1997-04-01  |  6KB  |  97 lines

  1. /*--------------(Set default destination directory)-------------*/
  2. DESTINATION=DEVTOOLS\GREED  /* Pathname without drive character */
  3.  
  4. /*---------------(Search for previous installation)-------------*/
  5. WPS_ONLY_IF_EXIST=GREED.EXE
  6.  
  7. /*-----(Your welcome message. Set no comment in those lines)----*/
  8. /* Note: Use '\n' (like C) in the message line for Line Feed    */
  9. /*--------------------------------------------------------------*/
  10. WELCOME_BUTTON=OKCANCEL                /* OKCANCEL, OK or Blank */
  11. WELCOME_TITLE=Hi Gals and Guys!
  12. WELCOME=Welcome to the Installation of "GREED"
  13. WELCOME=Version 2.11.\n\n
  14. WELCOME=Click OK to continue or CANCEL to exit\n\n
  15. WELCOME=Best Regards, Janosch\n\n
  16.  
  17. /*----------------------(start WPS objects)---------------------*/
  18. /* Note: "dest_path" is a keyword for the destination directory */
  19. /*       - please use it as is.                                 */
  20. /*       For syntax of those lines see REXXUtil SysCreateObject.*/
  21. /*--------------------------------------------------------------*/
  22. ("WPFolder","General Rexx Extended Editor"'0d0a'x"Version 2.11","<WP_DESKTOP>", "OBJECTID=<GREED_FOLDER>;BACKGROUND="dest_path"\GREED.BMP;ICONFILE="dest_path"\GREED.ICO", "U")
  23. ("WPProgram","Greed", "<GREED_FOLDER>","TEMPLATE=NO;EXENAME="||dest_path"\GREED.EXE;STARTUPDIR="||dest_path,"U")
  24. ("WPProgram","Templates Controller", "<GREED_FOLDER>","TEMPLATE=NO;EXENAME="||dest_path"\GREEDX.EXE;STARTUPDIR="||dest_path,"U")
  25. ("WPProgram","Greed Information","<GREED_FOLDER>","EXENAME=VIEW.EXE;PARAMETERS="||dest_path"\GREED.INF;STARTUPDIR="dest_path,"U")
  26. ("WPProgram","Templates Controller"||'0d0a'x"Information","<GREED_FOLDER>","EXENAME=VIEW.EXE;PARAMETERS="||dest_path"\GREEDX.INF;STARTUPDIR="dest_path,"U")
  27. ("WPProgram","Template Editor","<GREED_FOLDER>","TEMPLATE=NO;EXENAME="dest_path"\TemplEd.EXE;STARTUPDIR="dest_path";ASSOCFILTER=*.FNC,,","U")
  28. ("WPProgram","File Browser","<GREED_FOLDER>","TEMPLATE=NO;EXENAME="dest_path"\PMBROWSE.EXE;STARTUPDIR="dest_path,"U")
  29. ("WPShadow","REXX Information","<GREED_FOLDER>","SHADOWID=<WP_REXREF>;OBJECTID=<GREED_REXREF>","r")
  30. /*----------------------(end WPS objects)-----------------------*/
  31.  
  32. /*-------(Rexx procedures. Set no comment in those lines)----------*/
  33. /* Note: Your REXX programs, if used, must exist in the            */
  34. /*       installation(source) directory. You can only use constant */
  35. /*       values as calling parameters or the following keywords:   */
  36. /*       - dest_path (for the destination directory)               */
  37. /*       - homeDir   (for the installation(source) directory)      */
  38. /*       It is not necessary  to enter the File Extention (.CMD).  */
  39. /*       Please do not use the output to / input from the Stdio.   */
  40. /*       i.e.: Call for MYREXX.CMD with the parameter 'A:'         */
  41. /*             after successfully installation:                    */
  42. /*             START_REXX_BY_SUCCESSFUL=MYREXX 'A:'                */
  43. /*-----------------------------------------------------------------*/
  44. START_REXX_BY_OPEN_WINDOW  = 
  45. START_REXX_BY_START_INSTALL= savepre dest_path
  46. START_REXX_BY_SUCCESSFUL   = rstrfnc dest_path
  47. /* delsaves dest_path */
  48. START_REXX_IF_FAILURE      = restorep dest_path
  49. START_REXX_BY_CLOSE_WINDOW = 
  50. /*---------------------(End Rexx procedures)--------------------*/
  51.  
  52. /*--------------------(Update informations)----------------------*/
  53. /* Note: Here you can enter  the names of files to delete if you */
  54. /*       use this procedure for update a previous installation.  */
  55. /*       It is useful for delete files you do not need  any more */
  56. /*       for the new release.  (PS : See Diectory Info below )   */
  57. /*       This files are deleted before you start the installation*/
  58. /*       (after you are pressed the push Button Install)         */ 
  59. /*       You can use this keyword as frequently as you need.     */
  60. /*       i.e.: DELETE_FILE=MYAPPL16.EXE                          */
  61. /*---------------------------------------------------------------*/
  62. DELETE_FILE=FunWrite.EXE
  63. DELETE_FILE=FunWrite.ICO
  64. DELETE_FILE=FtpDef.HLP
  65. DELETE_FILE=FtpDef.INF
  66. DELETE_FILE=FtpDef.EXE
  67. DELETE_FILE=
  68. /* ... more deletes ... */
  69. /*----------------------( Directory Information )----------------*/
  70. /* Note: Here are entries for the Directories to be deleted      */
  71. /* before installing the new instance of of the installtion.     */
  72. /* These are directories that you no longer require ( or want )  */
  73. /* to appear in the new installation into the existing Directory.*/
  74. /*---------------------------------------------------------------*/
  75. REMOVE_DIR=
  76. REMOVE_DIR=
  77. REMOVE_DIR=
  78. /* ... more removes ... */
  79. /*-------------------(End update informations)-------------------*/
  80.  
  81. /*----------------(Post-installation processing)-----------------*/
  82. /* After successfully installation you can delete files and      */
  83. /* directories which you not need after the installation such as */
  84. /* Log files, Rexx-exits or backup directory                     */
  85. /* You can use this keywords as frequently as you need.          */
  86. /* Note: only empty directories will be deleted                  */
  87. /*---------------------------------------------------------------*/
  88. DELETE_FILE_AFTER_INSTALLATION=
  89. DELETE_FILE_AFTER_INSTALLATION=
  90. DELETE_FILE_AFTER_INSTALLATION=
  91. /* ... more ... */
  92.  
  93. REMOVE_DIR_AFTER_INSTALLATION=SAVEPRE
  94. REMOVE_DIR_AFTER_INSTALLATION=
  95. /* ... more ... */
  96. /*--------------(End post-installation processing)---------------*/
  97.